home *** CD-ROM | disk | FTP | other *** search
- .TH SREGION
- 6 "IRIT Version 6.0"
- .SH NAME
- SREGION
-
-
-
- SurfaceType SREGION( SurfaceType Srf, ConstantType Direction,
- NumericType MinParam, NumericType MaxParam )
-
- Extracts a region of Srf between MinParam and MaxParam
- in the specified Direction. Both MinParam and MaxParam
- should be contained in the parametric domain of Srf in Direction.
-
- Example:
-
- Srf = ruledSrf( cbezier( list( ctlpt( E3, -0.5, -0.5, 0.5 ),
- ctlpt( E3, 0.0, 0.5, 0.0 ),
- ctlpt( E3, 0.5, -0.5, 0.0 ) ) ),
- cbezier( list( ctlpt( E3, -0.5, 0.5, 0.0 ),
- ctlpt( E3, 0.0, 0.0, 0.0 ),
- ctlpt( E3, 0.5, 0.5, 0.5 ) ) ) );
- SubSrf = SREGION( Srf, ROW, 0.3, 0.6 );
-
- extracts the region of Srf from the parameter value 0.3 to the
- parameter value 0.6 along the ROW direction. the COLumn direction is
- extracted as a whole.
-